home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / search.dxr / 00113.ls < prev    next >
Encoding:
Text File  |  2000-01-18  |  727 b   |  30 lines

  1. on tellloc startsprite, endSprite
  2.   if voidp(endSprite) then
  3.     endSprite = startsprite
  4.   end if
  5.   repeat with rc = startsprite to endSprite
  6.     if the memberNum of sprite rc = 0 then
  7.       put "‚Ä¢‚Ä¢ Blank"
  8.       next repeat
  9.     end if
  10.     put rc, member(the memberNum of sprite rc).name, the loc of sprite rc
  11.   end repeat
  12. end
  13.  
  14. on tellrect startsprite, endSprite
  15.   if voidp(endSprite) then
  16.     endSprite = startsprite
  17.   end if
  18.   repeat with rc = startsprite to endSprite
  19.     if the memberNum of sprite rc = 0 then
  20.       put "‚Ä¢‚Ä¢ Blank"
  21.       next repeat
  22.     end if
  23.     put rc, member(the memberNum of sprite rc).name, the rect of sprite rc
  24.   end repeat
  25. end
  26.  
  27. on Jat p1, p2, p3, p4, p5, p6
  28.   put p1, p2, p3, p4, p5, p6
  29. end
  30.